home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / BROWSER.XPI / bin / components / nsComposerCmdLineHandler.js < prev    next >
Encoding:
Text File  |  2006-09-10  |  5.8 KB  |  188 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Seamonkey Composer.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Benjamin Smedberg <bsmedberg@covad.net>.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const nsICmdLineHandler     = Components.interfaces.nsICmdLineHandler;
  38. const nsIFactory            = Components.interfaces.nsIFactory;
  39. const nsISupports           = Components.interfaces.nsISupports;
  40. const nsIModule             = Components.interfaces.nsIModule;
  41. const nsIComponentRegistrar = Components.interfaces.nsIComponentRegistrar;
  42. const nsICategoryManager    = Components.interfaces.nsICategoryManager;
  43.  
  44. const NS_ERROR_FAILURE        = Components.results.NS_ERROR_FAILURE;
  45. const NS_ERROR_NO_AGGREGATION = Components.results.NS_ERROR_NO_AGGREGATION;
  46. const NS_ERROR_NO_INTERFACE   = Components.results.NS_ERROR_NO_INTERFACE;
  47.  
  48. function nsComposerCmdLineHandler() {
  49. }
  50.  
  51. nsComposerCmdLineHandler.prototype = {
  52.   /* nsISupports */
  53.  
  54.   QueryInterface: function(iid) {
  55.     if (!iid.equals(nsICmdLineHandler) &&
  56.         !iid.equals(nsISupports)) {
  57.           throw Components.results.NS_ERROR_NO_INTERFACE;
  58.     }
  59.     return this;
  60.   },
  61.  
  62.   /* nsICmdLineHandler */
  63.  
  64.   get commandLineArgument() {
  65.     return "-edit";
  66.   },
  67.  
  68.   get prefNameForStartup() {
  69.     return "general.startup.editor";
  70.   },
  71.  
  72.   get chromeUrlForTask() {
  73.     return "chrome://editor/content/editor.xul";
  74.   },
  75.  
  76.   get helpText() {
  77.     return "Start with editor."
  78.   },
  79.  
  80.   get handlesArgs() {
  81.     return true;
  82.   },
  83.  
  84.   get defaultArgs() {
  85.     return "about:blank";
  86.   },
  87.  
  88.   get openWindowWithArgs() {
  89.     return true;
  90.   }
  91. };
  92.  
  93. function nsComposerCmdLineHandlerFactory() {
  94. }
  95.  
  96. nsComposerCmdLineHandlerFactory.prototype = {
  97.   /* nsISupports */
  98.  
  99.   QueryInterface: function(iid) {
  100.     if (!iid.equals(nsIFactory) &&
  101.         !iid.equals(nsISupports)) {
  102.           throw Components.results.NS_ERROR_NO_INTERFACE;
  103.     }
  104.     return this;
  105.   },
  106.  
  107.   /* nsIFactory */
  108.  
  109.   createInstance: function(outer, iid) {
  110.     if (outer != null) {
  111.       throw NS_ERROR_NO_AGGREGATION;
  112.     }
  113.  
  114.     return new nsComposerCmdLineHandler().QueryInterface(iid);
  115.   },
  116.  
  117.   lockFactory: function(lock) {
  118.   }
  119. };
  120.  
  121. const nsComposerCmdLineHandler_CID =
  122.   Components.ID("{f7d8db95-ab5d-4393-a796-9112fe758cfa}");
  123.  
  124. const ContractIDPrefix =
  125.   "@mozilla.org/commandlinehandler/general-startup;1?type=";
  126.  
  127. var thisModule = {
  128.   /* nsISupports */
  129.  
  130.   QueryInterface: function(iid) {
  131.     if (!iid.equals(nsIModule) &&
  132.         !iid.equals(nsISupports)) {
  133.           throw Components.results.NS_ERROR_NO_INTERFACE;
  134.     }
  135.     return this;
  136.   },
  137.  
  138.   /* nsIModule */
  139.  
  140.   getClassObject: function (compMgr, cid, iid) {
  141.     if (!cid.equals(nsComposerCmdLineHandler_CID)) {
  142.       throw NS_ERROR_FAILURE;
  143.     }
  144.  
  145.     if (!iid.equals(nsIFactory)) {
  146.       throw NS_ERROR_NO_INTERFACE;
  147.     }
  148.  
  149.     return new nsComposerCmdLineHandlerFactory();
  150.   },
  151.  
  152.   registerSelf: function (compMgr, fileSpec, location, type) {
  153.     var compReg = compMgr.QueryInterface(nsIComponentRegistrar);
  154.     compReg.registerFactoryLocation(nsComposerCmdLineHandler_CID,
  155.                                     "nsComposerCmdLineHandler",
  156.                                     ContractIDPrefix + "edit",
  157.                                     fileSpec, location, type);
  158.     compReg.registerFactoryLocation(nsComposerCmdLineHandler_CID,
  159.                                     "nsComposerCmdLineHandler",
  160.                                     ContractIDPrefix + "editor",
  161.                                     fileSpec, location, type);
  162.  
  163.     var catMan = Components.classes["@mozilla.org/categorymanager;1"].getService(nsICategoryManager);
  164.     catMan.addCategoryEntry("command-line-argument-handlers",
  165.                             "nsComposerCmdLineHandler",
  166.                             ContractIDPrefix + "edit",
  167.                             true, true);
  168.   },
  169.  
  170.   unregisterSelf: function (compMgr, location, type) {
  171.     var compReg = compMgr.QueryInterface(nsIComponentRegistrar);
  172.     compReg.unregisterFactoryLocation(nsComposerCmdLineHandler_CID,
  173.                                       location);
  174.  
  175.     var catMan = Components.classes["@mozilla.org/categorymanager;1"].getService(nsICategoryManager);
  176.     catMan.deleteCategoryEntry("command-line-argument-handlers",
  177.                                "nsComposerCmdLineHandler", true);
  178.   },    
  179.  
  180.   canUnload: function (compMgr) {
  181.     return true;
  182.   }
  183. };
  184.  
  185. function NSGetModule(compMgr, fileSpec) {
  186.   return thisModule;
  187. }
  188.